home *** CD-ROM | disk | FTP | other *** search
- /* SccsId = "@(#)dmui.h 3.10 (TU-Delft) 04/28/93" */
- /**********************************************************
-
- Name/Version : The Design Data Management Project
-
- Language : C
- Operating system : UNIX SYSTEM V
- Host machine : HP9000/S500
-
- Author(s) : S. de Graaf
- A. van der Hoeven
- T.G.R. van Leuken
- N. van der Meijs
- T. Vogel
- P. van der Wolf
- Creation date : 04-Dec-1986
- Modified by : S. de Graaf
- Modification date : 26-Feb-1988
-
-
- Delft University of Technology
- Department of Electrical Engineering
- Network Theory Section
- Mekelweg 4 - P.O.Box 5031
- 2600 GA DELFT
- The Netherlands
-
- Phone : 015 - 786234
-
- COPYRIGHT (C) 1985-1988, All rights reserved
- **********************************************************/
-
- #ifndef __DMUI_H
- #define __DMUI_H
-
- struct wkstat {
- char *wsname;
- int (*wstype) ();
- int cHeight;
- int cWidth;
- } ws_table[] = {
- #ifdef hp9000s500
- "hp2397", Hp2397, 9, 7,
- "2397", Hp2397, 9, 7,
- "hp98700", Hp98700, 19, 10,
- "98700", Hp98700, 19, 10,
- "hp9836", Hp98700, 19, 10,
- "rast10", Rast10, 11, 8,
- "hpgp", HpGp, 19, 13,
- "plotfile", PlotFile, 19, 13,
- #endif
- #ifdef hp9000s300
- "hp2397", Hp2397, 9, 7,
- "2397", Hp2397, 9, 7,
- "hp98700", Hp98700, 19, 10,
- "98700", Hp98700, 19, 10,
- "hp98720", Hp98700, 19, 10,
- "98720", Hp98700, 19, 10,
- "hp9836", Hp98700, 19, 10,
- "hp98550", Hp98700, 19, 10,
- "98550", Hp98700, 19, 10,
- "plotfile", PlotFile, 19, 13,
- #endif
- #ifdef sel
- "rast10", Rast10, 11, 8,
- "hp2397", Hp2397, 9, 7,
- "2397", Hp2397, 9, 7,
- "plotfile", PlotFile, 19, 13,
- #endif
- #ifdef hp9000s800
- "rast10", Rast10, 11, 8,
- "hp2397", Hp2397, 9, 7,
- "2397", Hp2397, 9, 7,
- "plotfile", PlotFile, 19, 13,
- #endif
- #ifdef apollo
- "apollo_15_color", AplloBrrw, 19, 10,
- "hp2397", Hp2397, 9, 7,
- "2397", Hp2397, 9, 7,
- "plotfile", PlotFile, 19, 13,
- #endif
- #ifdef sun
- "sun", SnClrScrn, 19, 10,
- "sunw", SnClrWndw, 19, 10,
- "hp2397", Hp2397, 9, 7,
- "2397", Hp2397, 9, 7,
- "plotfile", PlotFile, 19, 13,
- #endif
- };
-
- #endif /* __DMUI_H */
-
-